None
# Create a temporary directory to hold notebook output, and change the working directory to that directory.
from tempfile import TemporaryDirectory
import os
import shutil
data_dir = TemporaryDirectory()
os.chdir(data_dir.name)
import os
if 'CRDS_CACHE_TYPE' in os.environ:
if os.environ['CRDS_CACHE_TYPE'] == 'local':
os.environ['CRDS_PATH'] = os.path.join(os.environ['HOME'], 'crds', 'cache')
elif os.path.isdir(os.environ['CRDS_CACHE_TYPE']):
os.environ['CRDS_PATH'] = os.environ['CRDS_CACHE_TYPE']
print('CRDS cache location: {}'.format(os.environ['CRDS_PATH']))
CRDS cache location: /grp/crds/cache
The library imports relevant to this notebook are aready taken care of by importing PTT.
NOTE: This notebook assumes that the pipeline version to be tested is already installed and its environment is activated.
To be able to run this notebook you need to install nptt.
If all goes well you will be able to import PTT.
import warnings
import psutil
from astropy.io import fits
# Only print a DeprecationWarning the first time it shows up, not every time.
with warnings.catch_warnings():
warnings.simplefilter("once", category=DeprecationWarning)
import jwst
from jwst.pipeline.calwebb_detector1 import Detector1Pipeline
from jwst.assign_wcs.assign_wcs_step import AssignWcsStep
# The latest version of NPTT is installed in the requirements text file at:
# /jwst_validation_notebooks/environment.yml
# import NPTT
import nirspec_pipe_testing_tool as nptt
# To get data from Artifactory
from ci_watson.artifactory_helpers import get_bigdata
# Make sure that the version used is the right one
pipeline_version = jwst.__version__
nptt_version = nptt.__version__
print("Using jwst pipeline version: ", pipeline_version)
print("Using NPTT version: ", nptt_version)
Using jwst pipeline version: 1.8.2 Using NPTT version: 2.0.1
We compared Institute's pipeline product of the assign_wcs step with our benchmark files, or with the intermediary products from the ESA pipeline, which is completely independent from the Institute's. The comparison file is referred to as 'truth'. We calculated the relative difference and expected it to be equal to or less than computer precision: relative_difference = absolute_value( (Truth - ST)/Truth ) <= 1x10^-7.
For the test to be considered PASSED, every single slit (for FS data), slitlet (for MOS data) or slice (for IFU data) in the input file has to pass. If there is any failure, the whole test will be considered as FAILED.
The code for this test for Fixed Slits (FS) can be obtained from: https://github.com/spacetelescope/nirspec_pipe_testing_tool/blob/master/nirspec_pipe_testing_tool/calwebb_spec2_pytests/auxiliary_code/compare_wcs_fs.py. For Multi Object Spectroscopy (MOS), the code is in the same repository but is named compare_wcs_mos.py, and for Integral Field Unit (IFU) data, the test is named compare_wcs_ifu.py.
The input file is defined in the variable input_file (see section Testing Data Set and Variable Setup).
Step description: https://jwst-pipeline.readthedocs.io/en/latest/jwst/assign_wcs/main.html
Pipeline code: https://github.com/spacetelescope/jwst/tree/master/jwst/assign_wcs
If the test PASSED this means that all slits, slitlets, or slices individually passed the test. However, if ony one individual slit (for FS data), slitlet (for MOS data) or slice (for IFU data) test failed, the whole test will be reported as FAILED.### Calibration WG Requested Algorithm:
A short description and link to the page: https://outerspace.stsci.edu/display/JWSTCC/Vanilla+Spectral+GWCS+Information
Acronymns used un this notebook:
pipeline: calibration pipeline
spec2: spectroscopic calibration pipeline level 2b
PTT: NIRSpec pipeline testing tool (https://github.com/spacetelescope/nirspec_pipe_testing_tool)
The pipeline can be run from the command line in two variants: full or per step.
Tu run the spec2 pipeline in full use the command:
$ strun jwst.pipeline.Spec2Pipeline jwtest_rate.fits
Tu only run the assign_wcs step, use the command:
$ strun jwst.assign_wcs.AssignWcsStep jwtest_rate.fits
NIRSpec TA data will be run through the cal_detector1 and the imaging2 pipelines. The imaging pipeline can be run with the following fommand:
$ strun jwst.pipeline.Image2Pipeline jwtest_rate.fits
These options are also callable from a script with the testing environment active. The Python call for running the pipeline in full or by step are:
$\gt$ from jwst.pipeline.calwebb_spec2 import Spec2Pipeline
$\gt$ Spec2Pipeline.call(jwtest_rate.fits)
or
$\gt$ from jwst.assign_wcs.assign_wcs_step import AssignWcsStep
$\gt$ AssignWcsStep.call(jwtest_rate.fits)
For the imaging pipeline the call would be as follows:
$\gt$ from jwst.pipeline.calwebb_image2 import Image2Pipeline
$\gt$ Image2Pipeline.call(jwtest_rate.fits)
NPTT can run the spec2 pipeline either in full or per step, as well as the imaging pipeline in full. In this notebook we will use NPTT to run the pipeline and the validation tests. To run NPTT, follow the directions in the corresponding repo page.
All testing data is from the CV3 campaign. We chose these files because this is our most complete data set, i.e. all modes and filter-grating combinations.
Data used was for testing:
testing_data = {
'ifu_prism_clear':{
'uncal_file_nrs1': 'ifu_prism_nrs1_uncal.fits',
'uncal_file_nrs2': 'ifu_prism_nrs2_uncal.fits',
'truth_file_nrs1': 'ifu_prism_nrs1_assign_wcs_truth.fits',
'truth_file_nrs2': None,
'msa_shutter_config': None }
}
# define function to pull data from Artifactory
def get_artifactory_file(data_set_dict, detector):
"""This function creates a list with all the files needed per detector to run the test.
Args:
data_set_dict: dictionary, contains inputs for a specific mode and configuration
detector: string, either nrs1 or nrs2
Returns:
data: list, contains all files needed to run test
"""
files2obtain = ['uncal_file_nrs1', 'truth_file_nrs1', 'msa_shutter_config']
data = []
for file in files2obtain:
data_file = None
try:
if '_nrs' in file and '2' in detector:
file = file.replace('_nrs1', '_nrs2')
data_file = get_bigdata('jwst_validation_notebooks',
'validation_data',
'nirspec_data',
data_set_dict[file])
except TypeError:
data.append(None)
continue
data.append(data_file)
return data
# Set common NPTT switches for this test and run the test for both detectors for each data set
# define benchmark (or 'truth') file
compare_assign_wcs_and_extract_2d_with_esa = False
# accepted threshold difference with respect to benchmark files
threshold_diff = 1e-7
# other variables
esa_files_path, raw_data_root_file = None, None
save_figs = False
show_figs = True
detectors = ['nrs1', 'nrs2']
results_dict = {}
# Test the IFU data
for mode_config, data_set_dict in testing_data.items():
if 'ifu' not in mode_config:
continue
print('IFU mode: ', mode_config)
for det in detectors:
print('Testing files for detector: ', det)
data = get_artifactory_file(data_set_dict, det)
uncal_file, truth_file, msa_shutter_config = data
uncal_basename = os.path.basename(uncal_file)
print('Working with uncal_file: ', uncal_basename)
# Make sure that there is an assign_wcs truth product to compare to, else skip this data set
if truth_file is None:
print('No truth file to compare to for this detector, skipping this data set. \n')
skip_file = True
# Make sure these keywords are properly set
filt = fits.getval(uncal_file, 'FILTER')
if 'OPAQUE' in filt:
if 'clear' in uncal_basename.lower():
filt = 'CLEAR'
else:
l = uncal_basename.split("_")
for li in l:
if 'lp' in li:
filt = li.upper()
break
fits.setval(uncal_file, 'FILTER', value=filt)
print('Filter = ', filt)
# Run the stage 1 pipeline
print('Running detector1 pipeline...')
rate_object = Detector1Pipeline.call(uncal_file)
# Run the stage 2 pipeline steps
print('Running spec2 pipeline')
try:
assign_wcs_object = AssignWcsStep.call(rate_object)
skip_file = False
except:
print("No open slits fall on detector ", det)
print("Skipping test for this file. \n")
skip_file = True
if not skip_file:
# Run the validation test
%matplotlib inline
print('Running test for IFU...')
result, _ = nptt.calwebb_spec2_pytests.auxiliary_code.compare_wcs_ifu.compare_wcs(
assign_wcs_object,
truth_file=truth_file,
esa_files_path=esa_files_path,
show_figs=show_figs,
save_figs=save_figs,
threshold_diff=threshold_diff,
raw_data_root_file=raw_data_root_file)
else:
result = 'skipped'
# Did the test passed
print("Did IFU assign_wcs validation test passed? ", result, "\n\n")
rd = {uncal_basename: result}
results_dict.update(rd)
IFU mode: ifu_prism_clear Testing files for detector: nrs1 Working with uncal_file: ifu_prism_nrs1_uncal.fits Filter = CLEAR Running detector1 pipeline...
2022-12-02 14:56:25,547 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nirspec_pars-detector1pipeline_0004.asdf
2022-12-02 14:56:25,573 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2022-12-02 14:56:25,575 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2022-12-02 14:56:25,576 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2022-12-02 14:56:25,578 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2022-12-02 14:56:25,579 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2022-12-02 14:56:25,581 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2022-12-02 14:56:25,582 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2022-12-02 14:56:25,583 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2022-12-02 14:56:25,584 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2022-12-02 14:56:25,586 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2022-12-02 14:56:25,587 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2022-12-02 14:56:25,588 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2022-12-02 14:56:25,589 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2022-12-02 14:56:25,591 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2022-12-02 14:56:25,592 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2022-12-02 14:56:25,593 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2022-12-02 14:56:25,595 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2022-12-02 14:56:25,717 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/ifu_prism_nrs1_uncal.fits',).
2022-12-02 14:56:25,727 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'n_pix_grow_sat': 1}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0, 'after_jump_flag_dn1': 0.0, 'after_jump_flag_time1': 0.0, 'after_jump_flag_dn2': 0.0, 'after_jump_flag_time2': 0.0, 'min_sat_area': 1.0, 'min_jump_area': 5.0, 'expand_factor': 2.0, 'use_ellipses': False, 'sat_required_snowball': True, 'expand_large_events': False}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'suppress_one_group': True, 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2022-12-02 14:56:25,950 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'ifu_prism_nrs1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2022-12-02 14:56:25,959 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0140.fits'.
2022-12-02 14:56:25,961 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits'.
2022-12-02 14:56:25,963 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0018.fits'.
2022-12-02 14:56:25,965 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0024.fits'.
2022-12-02 14:56:25,967 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2022-12-02 14:56:25,968 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits'.
2022-12-02 14:56:25,969 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2022-12-02 14:56:25,970 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2022-12-02 14:56:25,971 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2022-12-02 14:56:25,972 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0020.fits'.
2022-12-02 14:56:25,974 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0087.fits'.
2022-12-02 14:56:25,976 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2022-12-02 14:56:25,977 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2022-12-02 14:56:25,978 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2022-12-02 14:56:26,448 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:26,450 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:56:26,802 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2022-12-02 14:56:26,803 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2022-12-02 14:56:26,806 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2022-12-02 14:56:26,931 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:26,933 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:56:26,957 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0024.fits
2022-12-02 14:56:27,708 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2022-12-02 14:56:27,838 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:27,840 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'n_pix_grow_sat': 1}
2022-12-02 14:56:27,863 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0020.fits
2022-12-02 14:56:30,432 - stpipe.Detector1Pipeline.saturation - INFO - Detected 37655 saturated pixels
2022-12-02 14:56:30,484 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2022-12-02 14:56:30,501 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2022-12-02 14:56:30,641 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:30,643 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:56:30,644 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2022-12-02 14:56:30,646 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2022-12-02 14:56:30,763 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:30,765 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:56:30,790 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0087.fits
2022-12-02 14:56:31,772 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2022-12-02 14:56:32,024 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:32,026 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2022-12-02 14:56:32,225 - stpipe.Detector1Pipeline.refpix - INFO - NIR full frame data
2022-12-02 14:56:32,227 - stpipe.Detector1Pipeline.refpix - INFO - The following parameters are valid for this mode:
2022-12-02 14:56:32,227 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2022-12-02 14:56:32,228 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2022-12-02 14:56:32,228 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2022-12-02 14:56:32,229 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.0
2022-12-02 14:56:32,229 - stpipe.Detector1Pipeline.refpix - INFO - The following parameter is not applicable and is ignored:
2022-12-02 14:56:32,230 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = False
2022-12-02 14:56:37,487 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2022-12-02 14:56:37,646 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:37,648 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:56:37,675 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0018.fits
2022-12-02 14:56:39,196 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2022-12-02 14:56:39,326 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:39,328 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'dark_output': None}
2022-12-02 14:56:39,360 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0140.fits
2022-12-02 14:56:41,460 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=10, nframes=1, groupgap=0
2022-12-02 14:56:41,461 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=10, nframes=1, groupgap=0
2022-12-02 14:56:42,173 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2022-12-02 14:56:42,321 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:42,323 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0, 'after_jump_flag_dn1': 0.0, 'after_jump_flag_time1': 0.0, 'after_jump_flag_dn2': 0.0, 'after_jump_flag_time2': 0.0, 'min_sat_area': 1.0, 'min_jump_area': 5.0, 'expand_factor': 2.0, 'use_ellipses': False, 'sat_required_snowball': True, 'expand_large_events': False}
2022-12-02 14:56:42,334 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2022-12-02 14:56:42,348 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2022-12-02 14:56:42,419 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits
2022-12-02 14:56:43,042 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2022-12-02 14:56:43,133 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/twopoint_difference.py:154: RuntimeWarning: All-NaN slice encountered
max_ratio = np.nanmax(ratio, axis=0)
2022-12-02 14:56:47,759 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier, two-point found 29709 pixels with at least one CR from five or more groups.
2022-12-02 14:56:52,218 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 9.17492 sec
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/jump.py:302: RuntimeWarning: invalid value encountered in divide
data /= gain_2d
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/jump.py:303: RuntimeWarning: invalid value encountered in divide
err /= gain_2d
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/jump.py:304: RuntimeWarning: invalid value encountered in divide
readnoise_2d /= gain_2d
2022-12-02 14:56:52,339 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 10.005364
2022-12-02 14:56:52,345 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2022-12-02 14:56:52,469 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:56:52,471 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'int_name': '', 'save_opt': False, 'opt_name': '', 'suppress_one_group': True, 'maximum_cores': 'none'}
2022-12-02 14:56:52,512 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits
2022-12-02 14:56:52,513 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2022-12-02 14:56:52,632 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2022-12-02 14:56:52,633 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/ramp_fitting/ols_fit.py:1089: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int, :, :, :] *= (segs_4[num_int, :, :, :] > 0)
2022-12-02 14:57:42,435 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 10
2022-12-02 14:57:42,436 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2022-12-02 14:57:42,681 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2022-12-02 14:57:42,833 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<IFUImageModel(2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:57:42,835 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:57:42,929 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-12-02 14:57:42,930 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-12-02 14:57:42,936 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-12-02 14:57:43,078 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:57:43,079 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 14:57:43,165 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-12-02 14:57:43,166 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-12-02 14:57:43,172 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-12-02 14:57:43,172 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2022-12-02 14:57:43,173 - stpipe.Detector1Pipeline - INFO - Results used CRDS context: jwst_1019.pmap
2022-12-02 14:57:43,173 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2022-12-02 14:57:43,185 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2022-12-02 14:57:43,315 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<IFUImageModel(2048, 2048) from ifu_prism_nrs1_uncal.fits>,).
2022-12-02 14:57:43,317 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
Running spec2 pipeline
2022-12-02 14:57:43,539 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.03312480077147484 deg
2022-12-02 14:57:43,540 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3411945700645447 deg
2022-12-02 14:57:43,541 - stpipe.AssignWcsStep - INFO - theta_y correction: -0.005294283663966503 deg
2022-12-02 14:57:43,542 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-12-02 14:57:47,985 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_ifu pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0034.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0028.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': '/grp/crds/cache/references/jwst/jwst_nirspec_ifupost_0004.asdf', 'ifufore': '/grp/crds/cache/references/jwst/jwst_nirspec_ifufore_0003.asdf', 'ifuslicer': '/grp/crds/cache/references/jwst/jwst_nirspec_ifuslicer_0003.asdf'}
2022-12-02 14:57:54,272 - stpipe.AssignWcsStep - INFO - Update S_REGION to POLYGON ICRS 156.176998032 -45.687618307 156.178780407 -45.687618307 156.178780407 -45.686330486 156.176998032 -45.686330486
2022-12-02 14:57:54,274 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2022-12-02 14:57:54,290 - stpipe.AssignWcsStep - INFO - Results used CRDS context: jwst_1019.pmap
2022-12-02 14:57:54,291 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
Running test for IFU...
Information from the 'truth' (or comparison) file
Filename: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/ifu_prism_nrs1_assign_wcs_truth.fits
No. Name Ver Type Cards Dimensions Format
0 PRIMARY 1 PrimaryHDU 274 ()
1 SCI 1 ImageHDU 51 (2048, 2048) float32
2 ERR 1 ImageHDU 10 (2048, 2048) float32
3 DQ 1 ImageHDU 11 (2048, 2048) int32 (rescales to uint32)
4 VAR_POISSON 1 ImageHDU 9 (2048, 2048) float32
5 VAR_RNOISE 1 ImageHDU 9 (2048, 2048) float32
6 ASDF 1 BinTableHDU 11 1R x 1C [1080032B]
None
Comparing to ST 'truth' file.
from assign_wcs file --> Detector: NRS1 Grating: PRISM Filter: CLEAR Lamp: NO_LAMP
GWA_XTILT: 0.3411945700645447
GWA_YTILT: 0.03312480077147484
GWA_TTILT: 37.06107795068881
Working with slice: 00
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -4.010e-14 median = 0.000e+00 stdev = 4.581e-12
Maximum RelativeWavelength Difference = 2.955e-14
Minimum RelativeWavelength Difference = -5.234e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 2.955e-14
Minimum RelativeWavelength Difference = -5.234e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 3.491e-15 median = 0.000e+00 stdev = 1.675e-13
Maximum RelativeSlit-Y Difference = 6.364e-12
Minimum RelativeSlit-Y Difference = -1.583e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 6.364e-12
Minimum RelativeSlit-Y Difference = -1.583e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.287e-20 median = 0.000e+00 stdev = 1.470e-18
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.680e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.680e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 3.488e-15 median = 0.000e+00 stdev = 1.674e-13
Maximum RelativeMSA_Y Difference = 6.361e-12
Minimum RelativeMSA_Y Difference = -1.583e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 6.361e-12
Minimum RelativeMSA_Y Difference = -1.583e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -1.235e-18 median = 0.000e+00 stdev = 9.174e-17
Maximum RelativeV2 difference = 1.021e-14
Minimum RelativeV2 difference = -3.799e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.021e-14
Minimum RelativeV2 difference = -3.799e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -1.250e-18 median = 0.000e+00 stdev = 2.646e-17
Maximum RelativeV3 difference = 2.279e-15
Minimum RelativeV3 difference = -2.286e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.279e-15
Minimum RelativeV3 difference = -2.286e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/00_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 01
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -3.613e-16 median = 0.000e+00 stdev = 7.996e-14
Maximum RelativeWavelength Difference = 3.613e-12
Minimum RelativeWavelength Difference = -8.391e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 3.613e-12
Minimum RelativeWavelength Difference = -8.391e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -4.074e-16 median = 0.000e+00 stdev = 1.294e-14
Maximum RelativeSlit-Y Difference = 2.356e-13
Minimum RelativeSlit-Y Difference = -2.997e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 2.356e-13
Minimum RelativeSlit-Y Difference = -2.997e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 0.000e+00 median = 0.000e+00 stdev = 0.000e+00
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -4.073e-16 median = 0.000e+00 stdev = 1.294e-14
Maximum RelativeMSA_Y Difference = 2.356e-13
Minimum RelativeMSA_Y Difference = -2.997e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 2.356e-13
Minimum RelativeMSA_Y Difference = -2.997e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -5.043e-19 median = 0.000e+00 stdev = 1.878e-17
Maximum RelativeV2 difference = 7.584e-16
Minimum RelativeV2 difference = -3.790e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 7.584e-16
Minimum RelativeV2 difference = -3.790e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -3.477e-19 median = 0.000e+00 stdev = 1.444e-17
Maximum RelativeV3 difference = 2.285e-16
Minimum RelativeV3 difference = -2.285e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.285e-16
Minimum RelativeV3 difference = -2.285e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/01_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 02
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -3.617e-14 median = 0.000e+00 stdev = 3.065e-12
Maximum RelativeWavelength Difference = 4.547e-14
Minimum RelativeWavelength Difference = -3.316e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 4.547e-14
Minimum RelativeWavelength Difference = -3.316e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 1.015e-15 median = 0.000e+00 stdev = 2.902e-14
Maximum RelativeSlit-Y Difference = 6.885e-13
Minimum RelativeSlit-Y Difference = -6.396e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 6.885e-13
Minimum RelativeSlit-Y Difference = -6.396e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 1.283e-20 median = 0.000e+00 stdev = 1.467e-18
Maximum RelativeMSA_X Difference = 1.678e-16
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.678e-16
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 1.015e-15 median = 0.000e+00 stdev = 2.902e-14
Maximum RelativeMSA_Y Difference = 6.885e-13
Minimum RelativeMSA_Y Difference = -6.394e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 6.885e-13
Minimum RelativeMSA_Y Difference = -6.394e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 1.233e-18 median = 0.000e+00 stdev = 1.991e-16
Maximum RelativeV2 difference = 2.148e-14
Minimum RelativeV2 difference = -3.802e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.330e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = -1.583e-19 median = 0.000e+00 stdev = 4.879e-17
Maximum RelativeV3 difference = 4.688e-15
Minimum RelativeV3 difference = -2.287e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 4.688e-15
Minimum RelativeV3 difference = -2.287e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/02_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 03
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 2.689e-14 median = 0.000e+00 stdev = 2.186e-12
Maximum RelativeWavelength Difference = 2.185e-10
Minimum RelativeWavelength Difference = -3.547e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 2.185e-10
Minimum RelativeWavelength Difference = -3.547e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 3.447e-15 median = 0.000e+00 stdev = 6.987e-14
Maximum RelativeSlit-Y Difference = 2.185e-12
Minimum RelativeSlit-Y Difference = -1.637e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 2.185e-12
Minimum RelativeSlit-Y Difference = -1.637e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.284e-20 median = 0.000e+00 stdev = 1.470e-18
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.683e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.683e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 3.449e-15 median = 0.000e+00 stdev = 6.989e-14
Maximum RelativeMSA_Y Difference = 2.185e-12
Minimum RelativeMSA_Y Difference = -1.639e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 2.185e-12
Minimum RelativeMSA_Y Difference = -1.639e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 2.781e-19 median = 0.000e+00 stdev = 1.194e-16
Maximum RelativeV2 difference = 3.799e-16
Minimum RelativeV2 difference = -1.287e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.369e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 7.937e-19 median = 0.000e+00 stdev = 2.920e-17
Maximum RelativeV3 difference = 2.288e-16
Minimum RelativeV3 difference = -2.624e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.919e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/03_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 04
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 7.997e-15 median = 0.000e+00 stdev = 9.111e-13
Maximum RelativeWavelength Difference = 1.039e-10
Minimum RelativeWavelength Difference = -2.400e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.039e-10
Minimum RelativeWavelength Difference = -2.400e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 2.465e-15 median = 0.000e+00 stdev = 3.942e-14
Maximum RelativeSlit-Y Difference = 9.836e-13
Minimum RelativeSlit-Y Difference = -1.602e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 9.836e-13
Minimum RelativeSlit-Y Difference = -1.602e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -3.570e-26 median = 0.000e+00 stdev = 2.933e-18
Maximum RelativeMSA_X Difference = 1.676e-16
Minimum RelativeMSA_X Difference = -1.676e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.676e-16
Minimum RelativeMSA_X Difference = -1.676e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 2.465e-15 median = 0.000e+00 stdev = 3.942e-14
Maximum RelativeMSA_Y Difference = 9.836e-13
Minimum RelativeMSA_Y Difference = -1.602e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 9.836e-13
Minimum RelativeMSA_Y Difference = -1.602e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -1.302e-19 median = 0.000e+00 stdev = 3.011e-17
Maximum RelativeV2 difference = 3.796e-16
Minimum RelativeV2 difference = -1.890e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 3.796e-16
Minimum RelativeV2 difference = -1.890e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -1.571e-19 median = 0.000e+00 stdev = 2.193e-17
Maximum RelativeV3 difference = 2.283e-16
Minimum RelativeV3 difference = -4.553e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.283e-16
Minimum RelativeV3 difference = -4.553e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/04_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 05
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 6.836e-16 median = 0.000e+00 stdev = 6.180e-13
Maximum RelativeWavelength Difference = 5.426e-11
Minimum RelativeWavelength Difference = -4.533e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 5.426e-11
Minimum RelativeWavelength Difference = -4.533e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 1.145e-16 median = 0.000e+00 stdev = 1.066e-14
Maximum RelativeSlit-Y Difference = 2.419e-13
Minimum RelativeSlit-Y Difference = -1.787e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 2.419e-13
Minimum RelativeSlit-Y Difference = -1.787e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 0.000e+00 median = 0.000e+00 stdev = 0.000e+00
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 1.146e-16 median = 0.000e+00 stdev = 1.066e-14
Maximum RelativeMSA_Y Difference = 2.419e-13
Minimum RelativeMSA_Y Difference = -1.787e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 2.419e-13
Minimum RelativeMSA_Y Difference = -1.787e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -5.198e-19 median = 0.000e+00 stdev = 6.397e-17
Maximum RelativeV2 difference = 4.152e-15
Minimum RelativeV2 difference = -5.664e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 4.152e-15
Minimum RelativeV2 difference = -5.664e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -2.786e-19 median = 0.000e+00 stdev = 1.930e-17
Maximum RelativeV3 difference = 7.974e-16
Minimum RelativeV3 difference = -1.025e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 7.974e-16
Minimum RelativeV3 difference = -1.025e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/05_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 06
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -1.487e-14 median = 0.000e+00 stdev = 2.206e-12
Maximum RelativeWavelength Difference = 1.137e-10
Minimum RelativeWavelength Difference = -1.628e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.137e-10
Minimum RelativeWavelength Difference = -1.628e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -9.316e-15 median = 0.000e+00 stdev = 2.459e-13
Maximum RelativeSlit-Y Difference = 2.475e-12
Minimum RelativeSlit-Y Difference = -8.015e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 2.475e-12
Minimum RelativeSlit-Y Difference = -8.015e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 0.000e+00 median = 0.000e+00 stdev = 0.000e+00
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -9.321e-15 median = 0.000e+00 stdev = 2.461e-13
Maximum RelativeMSA_Y Difference = 2.476e-12
Minimum RelativeMSA_Y Difference = -8.019e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 2.476e-12
Minimum RelativeMSA_Y Difference = -8.019e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 2.743e-19 median = 0.000e+00 stdev = 1.452e-16
Maximum RelativeV2 difference = 1.062e-14
Minimum RelativeV2 difference = -9.311e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.330e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 1.134e-19 median = 0.000e+00 stdev = 3.938e-17
Maximum RelativeV3 difference = 2.281e-15
Minimum RelativeV3 difference = -1.828e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.886e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/06_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 07
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -2.819e-14 median = 0.000e+00 stdev = 7.360e-12
Maximum RelativeWavelength Difference = 3.501e-10
Minimum RelativeWavelength Difference = -5.826e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 3.501e-10
Minimum RelativeWavelength Difference = -5.826e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 6.537e-15 median = 0.000e+00 stdev = 1.066e-13
Maximum RelativeSlit-Y Difference = 3.422e-12
Minimum RelativeSlit-Y Difference = -2.552e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 3.422e-12
Minimum RelativeSlit-Y Difference = -2.552e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.283e-20 median = 0.000e+00 stdev = 1.471e-18
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.686e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.686e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 6.535e-15 median = 0.000e+00 stdev = 1.065e-13
Maximum RelativeMSA_Y Difference = 3.421e-12
Minimum RelativeMSA_Y Difference = -2.551e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 3.421e-12
Minimum RelativeMSA_Y Difference = -2.551e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -2.014e-18 median = 0.000e+00 stdev = 2.884e-16
Maximum RelativeV2 difference = 1.340e-14
Minimum RelativeV2 difference = -2.188e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.340e-14
Minimum RelativeV2 difference = -2.188e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -1.528e-18 median = 0.000e+00 stdev = 6.485e-17
Maximum RelativeV3 difference = 2.620e-15
Minimum RelativeV3 difference = -4.329e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.620e-15
Minimum RelativeV3 difference = -4.329e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/07_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 08
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -5.657e-14 median = 0.000e+00 stdev = 7.086e-12
Maximum RelativeWavelength Difference = 2.649e-10
Minimum RelativeWavelength Difference = -6.545e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 2.649e-10
Minimum RelativeWavelength Difference = -6.545e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 4.765e-15 median = 0.000e+00 stdev = 1.331e-13
Maximum RelativeSlit-Y Difference = 5.029e-12
Minimum RelativeSlit-Y Difference = -5.726e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 5.029e-12
Minimum RelativeSlit-Y Difference = -5.726e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -3.047e-25 median = 0.000e+00 stdev = 2.068e-18
Maximum RelativeMSA_X Difference = 1.673e-16
Minimum RelativeMSA_X Difference = -1.673e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.673e-16
Minimum RelativeMSA_X Difference = -1.673e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 4.762e-15 median = 0.000e+00 stdev = 1.330e-13
Maximum RelativeMSA_Y Difference = 5.028e-12
Minimum RelativeMSA_Y Difference = -5.726e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 5.028e-12
Minimum RelativeMSA_Y Difference = -5.726e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 3.342e-20 median = 0.000e+00 stdev = 2.797e-16
Maximum RelativeV2 difference = 1.403e-14
Minimum RelativeV2 difference = -2.015e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.330e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = -7.259e-19 median = 0.000e+00 stdev = 6.055e-17
Maximum RelativeV3 difference = 2.850e-15
Minimum RelativeV3 difference = -3.998e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.850e-15
Minimum RelativeV3 difference = -3.998e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/08_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 09
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -2.762e-15 median = 0.000e+00 stdev = 2.926e-12
Maximum RelativeWavelength Difference = 2.392e-10
Minimum RelativeWavelength Difference = -1.792e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 2.392e-10
Minimum RelativeWavelength Difference = -1.792e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 4.458e-15 median = 0.000e+00 stdev = 1.270e-13
Maximum RelativeSlit-Y Difference = 4.905e-12
Minimum RelativeSlit-Y Difference = -1.621e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 4.905e-12
Minimum RelativeSlit-Y Difference = -1.621e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.285e-20 median = 0.000e+00 stdev = 1.473e-18
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.688e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 0.000e+00
Minimum RelativeMSA_X Difference = -1.688e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 4.457e-15 median = 0.000e+00 stdev = 1.269e-13
Maximum RelativeMSA_Y Difference = 4.904e-12
Minimum RelativeMSA_Y Difference = -1.618e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 4.904e-12
Minimum RelativeMSA_Y Difference = -1.618e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 6.502e-19 median = 0.000e+00 stdev = 1.057e-16
Maximum RelativeV2 difference = 9.471e-15
Minimum RelativeV2 difference = -5.285e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.335e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 4.440e-19 median = 0.000e+00 stdev = 2.838e-17
Maximum RelativeV3 difference = 2.057e-15
Minimum RelativeV3 difference = -1.140e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.016e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/09_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 10
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -3.092e-14 median = 0.000e+00 stdev = 4.034e-12
Maximum RelativeWavelength Difference = 1.609e-10
Minimum RelativeWavelength Difference = -2.857e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.609e-10
Minimum RelativeWavelength Difference = -2.857e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -7.977e-16 median = 0.000e+00 stdev = 3.874e-14
Maximum RelativeSlit-Y Difference = 5.479e-13
Minimum RelativeSlit-Y Difference = -8.848e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 5.479e-13
Minimum RelativeSlit-Y Difference = -8.848e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -5.100e-20 median = 0.000e+00 stdev = 3.575e-18
Maximum RelativeMSA_X Difference = 1.671e-16
Minimum RelativeMSA_X Difference = -1.671e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.671e-16
Minimum RelativeMSA_X Difference = -1.671e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -7.979e-16 median = 0.000e+00 stdev = 3.874e-14
Maximum RelativeMSA_Y Difference = 5.476e-13
Minimum RelativeMSA_Y Difference = -8.850e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 5.476e-13
Minimum RelativeMSA_Y Difference = -8.850e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 2.067e-18 median = 0.000e+00 stdev = 1.764e-16
Maximum RelativeV2 difference = 7.416e-15
Minimum RelativeV2 difference = -7.967e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 8.326e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 2.849e-19 median = 0.000e+00 stdev = 5.141e-17
Maximum RelativeV3 difference = 1.712e-15
Minimum RelativeV3 difference = -1.596e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 1.642e-16
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/10_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 11
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -5.702e-14 median = 0.000e+00 stdev = 6.309e-12
Maximum RelativeWavelength Difference = 3.498e-10
Minimum RelativeWavelength Difference = -4.044e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 3.498e-10
Minimum RelativeWavelength Difference = -4.044e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -1.190e-15 median = 0.000e+00 stdev = 2.756e-14
Maximum RelativeSlit-Y Difference = 4.064e-13
Minimum RelativeSlit-Y Difference = -8.436e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 4.064e-13
Minimum RelativeSlit-Y Difference = -8.436e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 3.853e-20 median = 0.000e+00 stdev = 2.551e-18
Maximum RelativeMSA_X Difference = 1.690e-16
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.690e-16
Minimum RelativeMSA_X Difference = 0.000e+00
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -1.190e-15 median = 0.000e+00 stdev = 2.755e-14
Maximum RelativeMSA_Y Difference = 4.059e-13
Minimum RelativeMSA_Y Difference = -8.434e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 4.059e-13
Minimum RelativeMSA_Y Difference = -8.434e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 7.402e-19 median = 0.000e+00 stdev = 3.861e-16
Maximum RelativeV2 difference = 2.547e-14
Minimum RelativeV2 difference = -1.923e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.332e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = -8.510e-19 median = 0.000e+00 stdev = 9.089e-17
Maximum RelativeV3 difference = 5.586e-15
Minimum RelativeV3 difference = -3.988e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 5.586e-15
Minimum RelativeV3 difference = -3.988e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/11_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 12
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 3.539e-14 median = 0.000e+00 stdev = 1.331e-11
Maximum RelativeWavelength Difference = 6.765e-10
Minimum RelativeWavelength Difference = -7.755e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 6.765e-10
Minimum RelativeWavelength Difference = -7.755e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 5.547e-15 median = 0.000e+00 stdev = 1.641e-13
Maximum RelativeSlit-Y Difference = 4.968e-12
Minimum RelativeSlit-Y Difference = -8.913e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 4.968e-12
Minimum RelativeSlit-Y Difference = -8.913e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -2.548e-20 median = 0.000e+00 stdev = 2.917e-18
Maximum RelativeMSA_X Difference = 1.670e-16
Minimum RelativeMSA_X Difference = -1.670e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.670e-16
Minimum RelativeMSA_X Difference = -1.670e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 5.548e-15 median = 0.000e+00 stdev = 1.641e-13
Maximum RelativeMSA_Y Difference = 4.969e-12
Minimum RelativeMSA_Y Difference = -8.916e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 4.969e-12
Minimum RelativeMSA_Y Difference = -8.916e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -5.039e-18 median = 0.000e+00 stdev = 6.849e-16
Maximum RelativeV2 difference = 3.032e-14
Minimum RelativeV2 difference = -3.021e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 3.032e-14
Minimum RelativeV2 difference = -3.021e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -1.620e-18 median = 0.000e+00 stdev = 1.434e-16
Maximum RelativeV3 difference = 5.924e-15
Minimum RelativeV3 difference = -6.276e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 5.924e-15
Minimum RelativeV3 difference = -6.276e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/12_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 13
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -3.779e-14 median = 0.000e+00 stdev = 5.745e-12
Maximum RelativeWavelength Difference = 1.818e-10
Minimum RelativeWavelength Difference = -4.480e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.818e-10
Minimum RelativeWavelength Difference = -4.480e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 4.842e-16 median = 0.000e+00 stdev = 6.557e-14
Maximum RelativeSlit-Y Difference = 1.118e-12
Minimum RelativeSlit-Y Difference = -1.411e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 1.118e-12
Minimum RelativeSlit-Y Difference = -1.411e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.288e-20 median = 0.000e+00 stdev = 2.556e-18
Maximum RelativeMSA_X Difference = 1.691e-16
Minimum RelativeMSA_X Difference = -1.691e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.691e-16
Minimum RelativeMSA_X Difference = -1.691e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 4.840e-16 median = 0.000e+00 stdev = 6.557e-14
Maximum RelativeMSA_Y Difference = 1.118e-12
Minimum RelativeMSA_Y Difference = -1.410e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 1.118e-12
Minimum RelativeMSA_Y Difference = -1.410e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 9.366e-19 median = 0.000e+00 stdev = 2.611e-16
Maximum RelativeV2 difference = 1.643e-14
Minimum RelativeV2 difference = -7.576e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.369e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 2.272e-19 median = 0.000e+00 stdev = 6.082e-17
Maximum RelativeV3 difference = 3.195e-15
Minimum RelativeV3 difference = -1.486e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 8.592e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/13_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 14
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 6.336e-14 median = 0.000e+00 stdev = 7.527e-12
Maximum RelativeWavelength Difference = 5.620e-10
Minimum RelativeWavelength Difference = -2.293e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 5.620e-10
Minimum RelativeWavelength Difference = -2.293e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -2.497e-14 median = 0.000e+00 stdev = 6.327e-13
Maximum RelativeSlit-Y Difference = 1.126e-12
Minimum RelativeSlit-Y Difference = -2.159e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 1.126e-12
Minimum RelativeSlit-Y Difference = -2.159e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -7.622e-20 median = 0.000e+00 stdev = 4.117e-18
Maximum RelativeMSA_X Difference = 1.668e-16
Minimum RelativeMSA_X Difference = -1.668e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.668e-16
Minimum RelativeMSA_X Difference = -1.668e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -2.498e-14 median = 0.000e+00 stdev = 6.330e-13
Maximum RelativeMSA_Y Difference = 1.126e-12
Minimum RelativeMSA_Y Difference = -2.160e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 1.126e-12
Minimum RelativeMSA_Y Difference = -2.160e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 6.993e-19 median = 0.000e+00 stdev = 3.378e-16
Maximum RelativeV2 difference = 1.466e-14
Minimum RelativeV2 difference = -2.018e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.334e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 9.590e-19 median = 0.000e+00 stdev = 8.978e-17
Maximum RelativeV3 difference = 3.427e-15
Minimum RelativeV3 difference = -4.340e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.919e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/14_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 15
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 5.138e-14 median = 0.000e+00 stdev = 4.119e-12
Maximum RelativeWavelength Difference = 3.630e-10
Minimum RelativeWavelength Difference = -7.249e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 3.630e-10
Minimum RelativeWavelength Difference = -7.249e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -7.474e-16 median = 0.000e+00 stdev = 3.922e-14
Maximum RelativeSlit-Y Difference = 5.534e-13
Minimum RelativeSlit-Y Difference = -7.698e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 5.534e-13
Minimum RelativeSlit-Y Difference = -7.698e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 1.289e-20 median = 0.000e+00 stdev = 3.303e-18
Maximum RelativeMSA_X Difference = 1.693e-16
Minimum RelativeMSA_X Difference = -1.693e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.693e-16
Minimum RelativeMSA_X Difference = -1.693e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -7.469e-16 median = 0.000e+00 stdev = 3.921e-14
Maximum RelativeMSA_Y Difference = 5.530e-13
Minimum RelativeMSA_Y Difference = -7.699e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 5.530e-13
Minimum RelativeMSA_Y Difference = -7.699e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -5.832e-19 median = 0.000e+00 stdev = 1.415e-16
Maximum RelativeV2 difference = 1.517e-15
Minimum RelativeV2 difference = -1.207e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.517e-15
Minimum RelativeV2 difference = -1.207e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = 5.666e-19 median = 0.000e+00 stdev = 4.634e-17
Maximum RelativeV3 difference = 1.026e-15
Minimum RelativeV3 difference = -2.280e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.898e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/15_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 16
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -1.888e-13 median = 0.000e+00 stdev = 4.031e-11
Maximum RelativeWavelength Difference = 1.625e-09
Minimum RelativeWavelength Difference = -1.747e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.625e-09
Minimum RelativeWavelength Difference = -1.747e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -1.163e-12 median = 0.000e+00 stdev = 1.317e-10
Maximum RelativeSlit-Y Difference = 7.733e-11
Minimum RelativeSlit-Y Difference = -1.510e-08
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 7.733e-11
Minimum RelativeSlit-Y Difference = -1.510e-08
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 2.537e-20 median = 0.000e+00 stdev = 5.816e-18
Maximum RelativeMSA_X Difference = 1.667e-16
Minimum RelativeMSA_X Difference = -1.667e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.667e-16
Minimum RelativeMSA_X Difference = -1.667e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 7.510e-12 median = 0.000e+00 stdev = 8.623e-10
Maximum RelativeMSA_Y Difference = 9.885e-08
Minimum RelativeMSA_Y Difference = -1.334e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 9.885e-08
Minimum RelativeMSA_Y Difference = -1.334e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 6.863e-18 median = 0.000e+00 stdev = 1.322e-15
Maximum RelativeV2 difference = 5.904e-14
Minimum RelativeV2 difference = -3.863e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 8.264e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 2.692e-18 median = 0.000e+00 stdev = 2.897e-16
Maximum RelativeV3 difference = 1.240e-14
Minimum RelativeV3 difference = -9.247e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.019e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/16_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 17
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 8.382e-14 median = 0.000e+00 stdev = 4.234e-12
Maximum RelativeWavelength Difference = 2.223e-10
Minimum RelativeWavelength Difference = -1.227e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 2.223e-10
Minimum RelativeWavelength Difference = -1.227e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -1.016e-15 median = 0.000e+00 stdev = 7.789e-14
Maximum RelativeSlit-Y Difference = 7.683e-13
Minimum RelativeSlit-Y Difference = -1.966e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 7.683e-13
Minimum RelativeSlit-Y Difference = -1.966e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 3.865e-20 median = 0.000e+00 stdev = 3.909e-18
Maximum RelativeMSA_X Difference = 1.695e-16
Minimum RelativeMSA_X Difference = -1.695e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.695e-16
Minimum RelativeMSA_X Difference = -1.695e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -1.017e-15 median = 0.000e+00 stdev = 7.788e-14
Maximum RelativeMSA_Y Difference = 7.678e-13
Minimum RelativeMSA_Y Difference = -1.966e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 7.678e-13
Minimum RelativeMSA_Y Difference = -1.966e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -5.884e-18 median = 0.000e+00 stdev = 2.101e-16
Maximum RelativeV2 difference = 5.848e-15
Minimum RelativeV2 difference = -7.168e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 5.848e-15
Minimum RelativeV2 difference = -7.168e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -2.549e-18 median = 0.000e+00 stdev = 7.061e-17
Maximum RelativeV3 difference = 1.370e-15
Minimum RelativeV3 difference = -2.175e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 1.370e-15
Minimum RelativeV3 difference = -2.175e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/17_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 18
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -3.658e-13 median = 0.000e+00 stdev = 2.582e-11
Maximum RelativeWavelength Difference = 7.592e-10
Minimum RelativeWavelength Difference = -1.878e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 7.592e-10
Minimum RelativeWavelength Difference = -1.878e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -1.052e-14 median = 0.000e+00 stdev = 3.886e-13
Maximum RelativeSlit-Y Difference = 4.853e-12
Minimum RelativeSlit-Y Difference = -1.112e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 4.853e-12
Minimum RelativeSlit-Y Difference = -1.112e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.264e-20 median = 0.000e+00 stdev = 3.243e-18
Maximum RelativeMSA_X Difference = 1.665e-16
Minimum RelativeMSA_X Difference = -1.665e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.665e-16
Minimum RelativeMSA_X Difference = -1.665e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -1.052e-14 median = 0.000e+00 stdev = 3.886e-13
Maximum RelativeMSA_Y Difference = 4.853e-12
Minimum RelativeMSA_Y Difference = -1.111e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 4.853e-12
Minimum RelativeMSA_Y Difference = -1.111e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 1.460e-17 median = 0.000e+00 stdev = 1.029e-15
Maximum RelativeV2 difference = 6.967e-14
Minimum RelativeV2 difference = -2.131e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.411e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 4.152e-18 median = 0.000e+00 stdev = 2.117e-16
Maximum RelativeV3 difference = 1.376e-14
Minimum RelativeV3 difference = -4.216e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.955e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/18_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 19
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 2.187e-14 median = 0.000e+00 stdev = 8.872e-12
Maximum RelativeWavelength Difference = 3.469e-10
Minimum RelativeWavelength Difference = -3.494e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 3.469e-10
Minimum RelativeWavelength Difference = -3.494e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 2.190e-14 median = 0.000e+00 stdev = 4.643e-13
Maximum RelativeSlit-Y Difference = 1.136e-11
Minimum RelativeSlit-Y Difference = -2.589e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 1.136e-11
Minimum RelativeSlit-Y Difference = -2.589e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -6.445e-20 median = 0.000e+00 stdev = 7.683e-18
Maximum RelativeMSA_X Difference = 1.696e-16
Minimum RelativeMSA_X Difference = -1.696e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.696e-16
Minimum RelativeMSA_X Difference = -1.696e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 2.190e-14 median = 0.000e+00 stdev = 4.643e-13
Maximum RelativeMSA_Y Difference = 1.137e-11
Minimum RelativeMSA_Y Difference = -2.588e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 1.137e-11
Minimum RelativeMSA_Y Difference = -2.588e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 4.503e-18 median = 0.000e+00 stdev = 3.873e-16
Maximum RelativeV2 difference = 1.359e-14
Minimum RelativeV2 difference = -1.149e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 1.687e-16
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 2.199e-18 median = 0.000e+00 stdev = 1.253e-16
Maximum RelativeV3 difference = 3.191e-15
Minimum RelativeV3 difference = -3.079e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 1.651e-16
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/19_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 20
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 2.608e-14 median = 0.000e+00 stdev = 1.040e-11
Maximum RelativeWavelength Difference = 3.341e-10
Minimum RelativeWavelength Difference = -4.321e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 3.341e-10
Minimum RelativeWavelength Difference = -4.321e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -1.097e-15 median = 0.000e+00 stdev = 1.066e-13
Maximum RelativeSlit-Y Difference = 3.075e-12
Minimum RelativeSlit-Y Difference = -9.038e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 3.075e-12
Minimum RelativeSlit-Y Difference = -9.038e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.010e-19 median = 0.000e+00 stdev = 5.019e-18
Maximum RelativeMSA_X Difference = 1.663e-16
Minimum RelativeMSA_X Difference = -1.663e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.663e-16
Minimum RelativeMSA_X Difference = -1.663e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -1.095e-15 median = 0.000e+00 stdev = 1.066e-13
Maximum RelativeMSA_Y Difference = 3.075e-12
Minimum RelativeMSA_Y Difference = -9.038e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 3.075e-12
Minimum RelativeMSA_Y Difference = -9.038e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -2.067e-18 median = 0.000e+00 stdev = 3.616e-16
Maximum RelativeV2 difference = 1.270e-14
Minimum RelativeV2 difference = -1.101e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.270e-14
Minimum RelativeV2 difference = -1.101e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -6.634e-19 median = 0.000e+00 stdev = 1.041e-16
Maximum RelativeV3 difference = 2.740e-15
Minimum RelativeV3 difference = -3.069e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.740e-15
Minimum RelativeV3 difference = -3.069e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/20_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 21
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 7.376e-15 median = 0.000e+00 stdev = 1.422e-11
Maximum RelativeWavelength Difference = 6.217e-10
Minimum RelativeWavelength Difference = -5.946e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 6.217e-10
Minimum RelativeWavelength Difference = -5.946e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 1.109e-15 median = 0.000e+00 stdev = 9.591e-14
Maximum RelativeSlit-Y Difference = 1.964e-12
Minimum RelativeSlit-Y Difference = -1.082e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 1.964e-12
Minimum RelativeSlit-Y Difference = -1.082e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 1.549e-19 median = 0.000e+00 stdev = 8.882e-18
Maximum RelativeMSA_X Difference = 1.698e-16
Minimum RelativeMSA_X Difference = -1.698e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.698e-16
Minimum RelativeMSA_X Difference = -1.698e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 1.106e-15 median = 0.000e+00 stdev = 9.584e-14
Maximum RelativeMSA_Y Difference = 1.961e-12
Minimum RelativeMSA_Y Difference = -1.081e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 1.961e-12
Minimum RelativeMSA_Y Difference = -1.081e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 3.217e-18 median = 0.000e+00 stdev = 4.455e-16
Maximum RelativeV2 difference = 1.192e-14
Minimum RelativeV2 difference = -1.450e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 8.301e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 4.518e-18 median = 0.000e+00 stdev = 1.810e-16
Maximum RelativeV3 difference = 5.358e-15
Minimum RelativeV3 difference = -4.675e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 8.642e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/21_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 22
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -4.878e-13 median = 0.000e+00 stdev = 3.192e-11
Maximum RelativeWavelength Difference = 8.865e-10
Minimum RelativeWavelength Difference = -1.130e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 8.865e-10
Minimum RelativeWavelength Difference = -1.130e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 8.376e-15 median = 0.000e+00 stdev = 2.000e-13
Maximum RelativeSlit-Y Difference = 5.563e-12
Minimum RelativeSlit-Y Difference = -1.838e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 5.563e-12
Minimum RelativeSlit-Y Difference = -1.838e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.257e-20 median = 0.000e+00 stdev = 4.793e-18
Maximum RelativeMSA_X Difference = 1.662e-16
Minimum RelativeMSA_X Difference = -1.662e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.662e-16
Minimum RelativeMSA_X Difference = -1.662e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 8.375e-15 median = 0.000e+00 stdev = 2.000e-13
Maximum RelativeMSA_Y Difference = 5.563e-12
Minimum RelativeMSA_Y Difference = -1.838e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 5.563e-12
Minimum RelativeMSA_Y Difference = -1.838e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 2.191e-17 median = 0.000e+00 stdev = 1.530e-15
Maximum RelativeV2 difference = 5.681e-14
Minimum RelativeV2 difference = -4.179e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.365e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = 3.083e-18 median = 0.000e+00 stdev = 3.036e-16
Maximum RelativeV3 difference = 1.080e-14
Minimum RelativeV3 difference = -9.018e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.996e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/22_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 23
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 1.320e-13 median = 0.000e+00 stdev = 8.417e-12
Maximum RelativeWavelength Difference = 6.545e-10
Minimum RelativeWavelength Difference = -2.618e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 6.545e-10
Minimum RelativeWavelength Difference = -2.618e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 1.686e-15 median = 0.000e+00 stdev = 8.868e-14
Maximum RelativeSlit-Y Difference = 2.488e-12
Minimum RelativeSlit-Y Difference = -1.371e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 2.488e-12
Minimum RelativeSlit-Y Difference = -1.371e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.290e-20 median = 0.000e+00 stdev = 2.564e-18
Maximum RelativeMSA_X Difference = 1.700e-16
Minimum RelativeMSA_X Difference = -1.700e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.700e-16
Minimum RelativeMSA_X Difference = -1.700e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 1.686e-15 median = 0.000e+00 stdev = 8.868e-14
Maximum RelativeMSA_Y Difference = 2.488e-12
Minimum RelativeMSA_Y Difference = -1.371e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 2.488e-12
Minimum RelativeMSA_Y Difference = -1.371e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -4.876e-18 median = 0.000e+00 stdev = 3.137e-16
Maximum RelativeV2 difference = 1.170e-14
Minimum RelativeV2 difference = -1.509e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.170e-14
Minimum RelativeV2 difference = -1.509e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -8.072e-19 median = 0.000e+00 stdev = 6.917e-17
Maximum RelativeV3 difference = 2.399e-15
Minimum RelativeV3 difference = -3.197e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.399e-15
Minimum RelativeV3 difference = -3.197e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/23_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 24
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -4.166e-13 median = 0.000e+00 stdev = 3.053e-11
Maximum RelativeWavelength Difference = 1.103e-09
Minimum RelativeWavelength Difference = -1.548e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.103e-09
Minimum RelativeWavelength Difference = -1.548e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = -1.831e-14 median = 0.000e+00 stdev = 3.196e-13
Maximum RelativeSlit-Y Difference = 1.291e-12
Minimum RelativeSlit-Y Difference = -9.292e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 1.291e-12
Minimum RelativeSlit-Y Difference = -9.292e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -3.756e-20 median = 0.000e+00 stdev = 3.814e-18
Maximum RelativeMSA_X Difference = 1.660e-16
Minimum RelativeMSA_X Difference = -1.660e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.660e-16
Minimum RelativeMSA_X Difference = -1.660e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = -1.832e-14 median = 0.000e+00 stdev = 3.197e-13
Maximum RelativeMSA_Y Difference = 1.291e-12
Minimum RelativeMSA_Y Difference = -9.295e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 1.291e-12
Minimum RelativeMSA_Y Difference = -9.295e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = 3.414e-19 median = 0.000e+00 stdev = 8.999e-16
Maximum RelativeV2 difference = 3.379e-14
Minimum RelativeV2 difference = -3.146e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V2 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 7.359e-17
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV2 difference = -9.997e-01
Minimum RelativeV2 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Relative V3 difference : mean = -6.169e-18 median = 0.000e+00 stdev = 2.116e-16
Maximum RelativeV3 difference = 6.829e-15
Minimum RelativeV3 difference = -7.731e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 6.829e-15
Minimum RelativeV3 difference = -7.731e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/24_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 25
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 2.764e-14 median = 0.000e+00 stdev = 2.418e-12
Maximum RelativeWavelength Difference = 1.127e-10
Minimum RelativeWavelength Difference = -9.928e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.127e-10
Minimum RelativeWavelength Difference = -9.928e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 2.239e-15 median = 0.000e+00 stdev = 1.452e-13
Maximum RelativeSlit-Y Difference = 4.250e-12
Minimum RelativeSlit-Y Difference = -2.201e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 4.250e-12
Minimum RelativeSlit-Y Difference = -2.201e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -1.418e-19 median = 0.000e+00 stdev = 5.735e-18
Maximum RelativeMSA_X Difference = 1.701e-16
Minimum RelativeMSA_X Difference = -1.701e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.701e-16
Minimum RelativeMSA_X Difference = -1.701e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 2.240e-15 median = 0.000e+00 stdev = 1.452e-13
Maximum RelativeMSA_Y Difference = 4.250e-12
Minimum RelativeMSA_Y Difference = -2.201e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 4.250e-12
Minimum RelativeMSA_Y Difference = -2.201e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -4.460e-18 median = 0.000e+00 stdev = 1.820e-16
Maximum RelativeV2 difference = 3.029e-15
Minimum RelativeV2 difference = -7.526e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 3.029e-15
Minimum RelativeV2 difference = -7.526e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -2.496e-18 median = 0.000e+00 stdev = 9.996e-17
Maximum RelativeV3 difference = 8.017e-16
Minimum RelativeV3 difference = -3.535e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 8.017e-16
Minimum RelativeV3 difference = -3.535e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/25_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 26
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 2.755e-14 median = 0.000e+00 stdev = 3.064e-11
Maximum RelativeWavelength Difference = 1.144e-09
Minimum RelativeWavelength Difference = -2.058e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.144e-09
Minimum RelativeWavelength Difference = -2.058e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 5.889e-14 median = 0.000e+00 stdev = 5.394e-12
Maximum RelativeSlit-Y Difference = 6.105e-10
Minimum RelativeSlit-Y Difference = -5.104e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 6.105e-10
Minimum RelativeSlit-Y Difference = -5.104e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 9.417e-26 median = 0.000e+00 stdev = 2.885e-18
Maximum RelativeMSA_X Difference = 1.658e-16
Minimum RelativeMSA_X Difference = -1.658e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.658e-16
Minimum RelativeMSA_X Difference = -1.658e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 6.305e-14 median = 0.000e+00 stdev = 5.854e-12
Maximum RelativeMSA_Y Difference = 6.641e-10
Minimum RelativeMSA_Y Difference = -5.060e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 6.641e-10
Minimum RelativeMSA_Y Difference = -5.060e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -1.078e-18 median = 0.000e+00 stdev = 1.113e-15
Maximum RelativeV2 difference = 3.787e-14
Minimum RelativeV2 difference = -4.787e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 3.787e-14
Minimum RelativeV2 difference = -4.787e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = 7.498e-19 median = 0.000e+00 stdev = 2.256e-16
Maximum RelativeV3 difference = 7.638e-15
Minimum RelativeV3 difference = -9.563e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Converting pipeline results to degrees to compare with truth file
Relative V3 difference : mean = -9.997e-01 median = -9.997e-01 stdev = 6.950e-17
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
Maximum RelativeV3 difference = -9.997e-01
Minimum RelativeV3 difference = -9.997e-01
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 100%
-> 3xtheshold = 100%
-> 5xtheshold = 100%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/26_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 27
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = -7.914e-14 median = 0.000e+00 stdev = 1.290e-11
Maximum RelativeWavelength Difference = 6.573e-10
Minimum RelativeWavelength Difference = -7.001e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 6.573e-10
Minimum RelativeWavelength Difference = -7.001e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 7.770e-15 median = 0.000e+00 stdev = 1.167e-13
Maximum RelativeSlit-Y Difference = 2.730e-12
Minimum RelativeSlit-Y Difference = -1.061e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 2.730e-12
Minimum RelativeSlit-Y Difference = -1.061e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 7.751e-20 median = 0.000e+00 stdev = 4.194e-18
Maximum RelativeMSA_X Difference = 1.703e-16
Minimum RelativeMSA_X Difference = -1.703e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.703e-16
Minimum RelativeMSA_X Difference = -1.703e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 7.768e-15 median = 0.000e+00 stdev = 1.167e-13
Maximum RelativeMSA_Y Difference = 2.730e-12
Minimum RelativeMSA_Y Difference = -1.061e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 2.730e-12
Minimum RelativeMSA_Y Difference = -1.061e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -3.954e-18 median = 0.000e+00 stdev = 4.662e-16
Maximum RelativeV2 difference = 1.534e-14
Minimum RelativeV2 difference = -2.007e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.534e-14
Minimum RelativeV2 difference = -2.007e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -3.558e-18 median = 0.000e+00 stdev = 1.466e-16
Maximum RelativeV3 difference = 2.750e-15
Minimum RelativeV3 difference = -6.875e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.750e-15
Minimum RelativeV3 difference = -6.875e-15
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/27_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 28
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 3.788e-13 median = 0.000e+00 stdev = 4.539e-11
Maximum RelativeWavelength Difference = 1.424e-09
Minimum RelativeWavelength Difference = -1.842e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.424e-09
Minimum RelativeWavelength Difference = -1.842e-09
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 4.457e-14 median = 0.000e+00 stdev = 1.134e-12
Maximum RelativeSlit-Y Difference = 3.355e-11
Minimum RelativeSlit-Y Difference = -1.067e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 3.355e-11
Minimum RelativeSlit-Y Difference = -1.067e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = -2.375e-19 median = 0.000e+00 stdev = 9.434e-18
Maximum RelativeMSA_X Difference = 1.657e-16
Minimum RelativeMSA_X Difference = -3.314e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.657e-16
Minimum RelativeMSA_X Difference = -3.314e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 4.458e-14 median = 0.000e+00 stdev = 1.134e-12
Maximum RelativeMSA_Y Difference = 3.355e-11
Minimum RelativeMSA_Y Difference = -1.066e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 3.355e-11
Minimum RelativeMSA_Y Difference = -1.066e-11
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -1.574e-17 median = 0.000e+00 stdev = 1.939e-15
Maximum RelativeV2 difference = 7.017e-14
Minimum RelativeV2 difference = -3.857e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 7.017e-14
Minimum RelativeV2 difference = -3.857e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -5.286e-18 median = 0.000e+00 stdev = 7.760e-16
Maximum RelativeV3 difference = 2.442e-14
Minimum RelativeV3 difference = -1.777e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 2.442e-14
Minimum RelativeV3 difference = -1.777e-14
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/28_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
Working with slice: 29
Avalable frames: ['detector', 'sca', 'gwa', 'slit_frame', 'slicer', 'msa_frame', 'oteip', 'v2v3', 'v2v3vacorr', 'world']
Relative Wavelength Difference : mean = 9.823e-14 median = 0.000e+00 stdev = 2.043e-11
Maximum RelativeWavelength Difference = 1.258e-09
Minimum RelativeWavelength Difference = -9.099e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeWavelength Difference = 1.258e-09
Minimum RelativeWavelength Difference = -9.099e-10
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative Slit-Y Difference : mean = 1.462e-12 median = 0.000e+00 stdev = 3.376e-11
Maximum RelativeSlit-Y Difference = 1.150e-09
Minimum RelativeSlit-Y Difference = -6.394e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeSlit-Y Difference = 1.150e-09
Minimum RelativeSlit-Y Difference = -6.394e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_X Difference : mean = 2.496e-17 median = 0.000e+00 stdev = 5.855e-16
Maximum RelativeMSA_X Difference = 1.994e-14
Minimum RelativeMSA_X Difference = -1.705e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_X Difference = 1.994e-14
Minimum RelativeMSA_X Difference = -1.705e-16
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative MSA_Y Difference : mean = 1.461e-12 median = 0.000e+00 stdev = 3.375e-11
Maximum RelativeMSA_Y Difference = 1.150e-09
Minimum RelativeMSA_Y Difference = -6.392e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeMSA_Y Difference = 1.150e-09
Minimum RelativeMSA_Y Difference = -6.392e-13
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V2 difference : mean = -2.560e-15 median = 0.000e+00 stdev = 5.996e-14
Maximum RelativeV2 difference = 1.906e-14
Minimum RelativeV2 difference = -2.044e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV2 difference = 1.906e-14
Minimum RelativeV2 difference = -2.044e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Relative V3 difference : mean = -1.765e-15 median = 0.000e+00 stdev = 4.142e-14
Maximum RelativeV3 difference = 3.888e-15
Minimum RelativeV3 difference = -1.412e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
Maximum RelativeV3 difference = 3.888e-15
Minimum RelativeV3 difference = -1.412e-12
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 0%
-> 3xtheshold = 0%
-> 5xtheshold = 0%
No output_directory was provided. Figures will be saved in current working directory:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/29_NRS1_rel_wave_diffs.png
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
No output_directory was provided. Figures will NOT be saved.
* The test of V3 difference for slice slice00 PASSED. * The test of V3 difference for slice slice01 PASSED. * The test of V3 difference for slice slice02 PASSED. * The test of V3 difference for slice slice03 FAILED. * The test of V3 difference for slice slice04 PASSED. * The test of V3 difference for slice slice05 PASSED. * The test of V3 difference for slice slice06 FAILED. * The test of V3 difference for slice slice07 PASSED. * The test of V3 difference for slice slice08 PASSED. * The test of V3 difference for slice slice09 FAILED. * The test of V3 difference for slice slice10 FAILED. * The test of V3 difference for slice slice11 PASSED. * The test of V3 difference for slice slice12 PASSED. * The test of V3 difference for slice slice13 FAILED. * The test of V3 difference for slice slice14 FAILED. * The test of V3 difference for slice slice15 FAILED. * The test of V3 difference for slice slice16 FAILED. * The test of V3 difference for slice slice17 PASSED. * The test of V3 difference for slice slice18 FAILED. * The test of V3 difference for slice slice19 FAILED. * The test of V3 difference for slice slice20 PASSED. * The test of V3 difference for slice slice21 FAILED. * The test of V3 difference for slice slice22 FAILED. * The test of V3 difference for slice slice23 PASSED. * The test of V3 difference for slice slice24 PASSED. * The test of V3 difference for slice slice25 PASSED. * The test of V3 difference for slice slice26 FAILED. * The test of V3 difference for slice slice27 PASSED. * The test of V3 difference for slice slice28 PASSED. * The test of V3 difference for slice slice29 PASSED. *** Final result for assign_wcs test will be reported as PASSED *** Did IFU assign_wcs validation test passed? PASSED Testing files for detector: nrs2 Working with uncal_file: ifu_prism_nrs2_uncal.fits No truth file to compare to for this detector, skipping this data set. Filter = CLEAR Running detector1 pipeline...
2022-12-02 15:02:07,521 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nirspec_pars-detector1pipeline_0004.asdf
2022-12-02 15:02:07,555 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2022-12-02 15:02:07,557 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2022-12-02 15:02:07,558 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2022-12-02 15:02:07,559 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2022-12-02 15:02:07,560 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2022-12-02 15:02:07,561 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2022-12-02 15:02:07,563 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2022-12-02 15:02:07,564 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2022-12-02 15:02:07,564 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2022-12-02 15:02:07,566 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2022-12-02 15:02:07,567 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2022-12-02 15:02:07,568 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2022-12-02 15:02:07,569 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2022-12-02 15:02:07,570 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2022-12-02 15:02:07,571 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2022-12-02 15:02:07,573 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2022-12-02 15:02:07,574 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2022-12-02 15:02:08,205 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l/ifu_prism_nrs2_uncal.fits',).
2022-12-02 15:02:08,217 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'n_pix_grow_sat': 1}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0, 'after_jump_flag_dn1': 0.0, 'after_jump_flag_time1': 0.0, 'after_jump_flag_dn2': 0.0, 'after_jump_flag_time2': 0.0, 'min_sat_area': 1.0, 'min_jump_area': 5.0, 'expand_factor': 2.0, 'use_ellipses': False, 'sat_required_snowball': True, 'expand_large_events': False}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'suppress_one_group': True, 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2022-12-02 15:02:08,440 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'ifu_prism_nrs2_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2022-12-02 15:02:08,449 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0143.fits'.
2022-12-02 15:02:08,451 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits'.
2022-12-02 15:02:08,453 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0021.fits'.
2022-12-02 15:02:08,454 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0025.fits'.
2022-12-02 15:02:08,456 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2022-12-02 15:02:08,456 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits'.
2022-12-02 15:02:08,458 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2022-12-02 15:02:08,458 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2022-12-02 15:02:08,458 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2022-12-02 15:02:08,459 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0021.fits'.
2022-12-02 15:02:08,460 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0104.fits'.
2022-12-02 15:02:08,461 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2022-12-02 15:02:08,462 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2022-12-02 15:02:08,462 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2022-12-02 15:02:09,206 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:09,209 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:02:09,412 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2022-12-02 15:02:09,413 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2022-12-02 15:02:09,416 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2022-12-02 15:02:09,629 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:09,630 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:02:09,654 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0025.fits
2022-12-02 15:02:10,425 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2022-12-02 15:02:10,640 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:10,641 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'n_pix_grow_sat': 1}
2022-12-02 15:02:10,666 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0021.fits
2022-12-02 15:02:13,356 - stpipe.Detector1Pipeline.saturation - INFO - Detected 21237 saturated pixels
2022-12-02 15:02:13,410 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2022-12-02 15:02:13,425 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2022-12-02 15:02:13,639 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:13,640 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:02:13,641 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2022-12-02 15:02:13,644 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2022-12-02 15:02:13,852 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:13,854 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:02:13,881 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0104.fits
2022-12-02 15:02:14,858 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2022-12-02 15:02:15,067 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:15,068 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2022-12-02 15:02:15,265 - stpipe.Detector1Pipeline.refpix - INFO - NIR full frame data
2022-12-02 15:02:15,266 - stpipe.Detector1Pipeline.refpix - INFO - The following parameters are valid for this mode:
2022-12-02 15:02:15,267 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2022-12-02 15:02:15,267 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2022-12-02 15:02:15,267 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2022-12-02 15:02:15,268 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.0
2022-12-02 15:02:15,268 - stpipe.Detector1Pipeline.refpix - INFO - The following parameter is not applicable and is ignored:
2022-12-02 15:02:15,269 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = False
2022-12-02 15:02:20,532 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2022-12-02 15:02:20,752 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:20,754 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:02:20,781 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0021.fits
2022-12-02 15:02:25,153 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2022-12-02 15:02:25,365 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:25,366 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'dark_output': None}
2022-12-02 15:02:25,392 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0143.fits
2022-12-02 15:02:29,144 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=10, nframes=1, groupgap=0
2022-12-02 15:02:29,144 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=10, nframes=1, groupgap=0
2022-12-02 15:02:29,616 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2022-12-02 15:02:29,831 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:29,833 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0, 'after_jump_flag_dn1': 0.0, 'after_jump_flag_time1': 0.0, 'after_jump_flag_dn2': 0.0, 'after_jump_flag_time2': 0.0, 'min_sat_area': 1.0, 'min_jump_area': 5.0, 'expand_factor': 2.0, 'use_ellipses': False, 'sat_required_snowball': True, 'expand_large_events': False}
2022-12-02 15:02:29,844 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2022-12-02 15:02:29,861 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2022-12-02 15:02:30,082 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits
2022-12-02 15:02:30,954 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2022-12-02 15:02:31,078 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/twopoint_difference.py:154: RuntimeWarning: All-NaN slice encountered
max_ratio = np.nanmax(ratio, axis=0)
2022-12-02 15:02:35,209 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier, two-point found 13747 pixels with at least one CR from five or more groups.
2022-12-02 15:02:38,029 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 7.07386 sec
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/jump.py:302: RuntimeWarning: invalid value encountered in divide
data /= gain_2d
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/jump.py:303: RuntimeWarning: invalid value encountered in divide
err /= gain_2d
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/jump/jump.py:304: RuntimeWarning: invalid value encountered in divide
readnoise_2d /= gain_2d
2022-12-02 15:02:38,213 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 8.368368
2022-12-02 15:02:38,219 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2022-12-02 15:02:38,625 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 10, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:02:38,627 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l', 'int_name': '', 'save_opt': False, 'opt_name': '', 'suppress_one_group': True, 'maximum_cores': 'none'}
2022-12-02 15:02:38,677 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits
2022-12-02 15:02:38,678 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2022-12-02 15:02:38,829 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2022-12-02 15:02:38,830 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stcal/ramp_fitting/ols_fit.py:1089: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int, :, :, :] *= (segs_4[num_int, :, :, :] > 0)
2022-12-02 15:03:26,991 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 10
2022-12-02 15:03:26,993 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2022-12-02 15:03:27,270 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2022-12-02 15:03:27,775 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<IFUImageModel(2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:03:27,777 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:03:27,879 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-12-02 15:03:27,880 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-12-02 15:03:27,885 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-12-02 15:03:28,323 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:03:28,326 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmphb9xsk5l'}
2022-12-02 15:03:28,420 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-12-02 15:03:28,422 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-12-02 15:03:28,427 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-12-02 15:03:28,428 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2022-12-02 15:03:28,428 - stpipe.Detector1Pipeline - INFO - Results used CRDS context: jwst_1019.pmap
2022-12-02 15:03:28,429 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2022-12-02 15:03:28,444 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
Running spec2 pipeline
2022-12-02 15:03:28,942 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<IFUImageModel(2048, 2048) from ifu_prism_nrs2_uncal.fits>,).
2022-12-02 15:03:28,944 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-12-02 15:03:29,170 - stpipe.AssignWcsStep - CRITICAL - No IFU slices fall on detector NRS2
No open slits fall on detector nrs2 Skipping test for this file. Did IFU assign_wcs validation test passed? skipped
# Summary of modes tested and their results
print('These are the final results of the tests: ')
for key, val in results_dict.items():
if not isinstance(val, str):
if val:
val = 'PASSED'
else:
val = 'FAILED'
print('{:<42} {:<8}'.format(key, val))
These are the final results of the tests: ifu_prism_nrs1_uncal.fits PASSED ifu_prism_nrs2_uncal.fits skipped
Author: Maria A. Pena-Guerrero, Sr. Science Software Engineer, NIRSpec
Updated On: Sep/22/2022